home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Easy as pi dcmd ƒ / pi.make < prev    next >
Text File  |  2000-06-23  |  844b  |  33 lines

  1. #   File:       pi.make
  2. #
  3. #    Easy as pi dcmd
  4. #    Created at MacHack 2000 by Philippe Casgrain
  5. #    philippe@casgrain.com
  6. #
  7. #    This builds the dcmd and moves it to the MacsBug Preferences folder 
  8. #    in the System folder. You may have to localize the Preferences
  9. #    folder name on a non-US system.
  10. #
  11. #    Note that the link order is important. If you link something else first,
  12. #    it will barf in the BuildDcmd.
  13. #    This is set up for MPW 3.2, since the libraries moved.
  14.  
  15. pi.p.o ƒ pi.make pi.p
  16.      Pascal  pi.p
  17. dcmdGlue.a.o    ƒ    dcmdGlue.a
  18.     asm    -o dcmdGlue.a.o    dcmdGlue.a
  19.  
  20. SOURCES = pi.p
  21. OBJECTS = dcmdGlue.a.o pi.p.o
  22.  
  23. pi ƒ pi.make {OBJECTS}
  24.     Link -sg Main=PASLIB,%A5INIT  ∂
  25.         {OBJECTS} ∂
  26.         "{Libraries}"Runtime.o ∂
  27.         "{Libraries}"Interface.o ∂
  28.         "{PLibraries}"PasLib.o ∂
  29.         -o pi
  30.     BuildDcmd pi 45243
  31.     
  32.     move pi "{SystemFolder}Preferences:MacsBug Preferences:pi" -y
  33.